home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 44
/
Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso
/
Aminet
/
comm
/
net
/
AmiComSys.lha
/
AmiComSys
/
rexx
/
SendIRC.amicomsys
< prev
next >
Wrap
Text File
|
1998-01-25
|
513b
|
26 lines
/* Send IRC-address to your IRC-client
Currently supported is AmIRC.
$VER: SendIRC.amicomsys 1.0 (24.1.1998) Håkan Parting
*/
parse arg server'/'channel
/*
if show('P','AMIRC.1') then
do
ADDRESS AMIRC.1 SAY "/SERVER "server
ADDRESS AMIRC.1 SAY "/JOIN "channel
Exit
end
*/
/* Set the path to your AmIRC-client under the Misc-page in AmiComSys settings.
*/
OPTIONS RESULTS;
ADDRESS AMICOMSYS GET stem info.;
ADDRESS COMMAND "c:run >NIL: "info.ircprgpath" Server="server" AutoJoin="channel" connect"
Exit